home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR03 / 3QBFILES.ZIP / STREET2.BAS < prev   
BASIC Source File  |  1993-09-03  |  19KB  |  388 lines

  1. CLS
  2. 10 PRINT ""
  3. 15 INPUT "Do you want 2 player mode or 1 player mode "; mode
  4. 20 PRINT "Welcome to the Street Fighter II: Champion Edition Tournament!"
  5. 25 PLAY "o3l4abcdefggaggaddedaccag"
  6. 26 INPUT "Do you want to skip the introduction "; skip$
  7. 27 IF skip$ = "Yes" THEN GOTO 370
  8. 30 PRINT "In this nationaly-televised fighting tournament,"
  9. 40 PRINT "eight fighters from across the globe meet to see which has "
  10. 50 PRINT "the strength, skill, power, and all-out courage to be "
  11. 60 PRINT "proclaimed as the World Warrior!"
  12. 70 PRINT ""
  13. 75 PLAY "o3l4abcdabcabaccabcda"
  14. 80 PRINT ""
  15. 90 PRINT "From the U.S.A., trained by martial arts master Sheng Long, Ken!"
  16. 100 PLAY "o5l2abcdeffg"
  17. 110 PRINT "From Russia, former wrestler who now wrestles bears for fun, Zangief!"
  18. 120 PLAY "o1l4abba"
  19. 130 PRINT "From Japan, also trained by Sheng Long, Ryu!"
  20. 140 PLAY "o3l4acba"
  21. 150 PRINT "From the U.S.A., former heavyweight boxer, Balrog!"
  22. 160 PLAY "o2l4acbac"
  23. 170 PRINT "From China, entering the tournament so she can avenge her father's death by"
  24. 180 PRINT "M. Bison, Chun Li!"
  25. 190 PLAY "o5l4bcbccba"
  26. 200 PRINT "From India, he has the ability to blow flames from his mouth, Dhalsim!"
  27. 210 PLAY "o2l6edcbaabcde"
  28. 220 PRINT "From Brazil, the half-man, half-beast, Blanka!"
  29. 230 PLAY "o1l4bcddcbcdd"
  30. 240 PRINT "From Spain, who improves his skills by fighting bulls with his steel claws"
  31. 250 PRINT "he wears on his hands, Vega!"
  32. 260 PLAY "o5l8ddecddaabbccddaaggddaabbccbbcdefggaaa"
  33. 270 PRINT "From Japan, the sumo wrestler, E. Honda!"
  34. 280 PLAY "o2l2baabc"
  35. 290 PRINT "From the U.S.A., U.S. Airforce Pilot, Guile!"
  36. 300 PLAY "o3l4aabbl6cdel4aabbl6cdeaa"
  37. 310 PRINT "From Thailand, former World Warrior, kickboxer Sagat!"
  38. 320 PLAY "o3l4acegl8gfedcbaa"
  39. 330 PRINT "And from Thailand, current World Warrior, the dictator who seems obsessed"
  40. 340 PRINT "on being the world leader, M. Bison!"
  41. 350 PLAY "o1l1dcbaaa"
  42. 360 PRINT ""
  43. 370 PRINT ""
  44. 375 IF mode = 2 THEN GOTO 3150
  45. 380 INPUT "Who do you want to be? (Please spell name correctly with capitals) ", character$
  46. 390 PRINT "Thank you for selecting "; character$; " as your character."
  47. 400 PRINT ""
  48. 410 PRINT ""
  49. 420 PRINT "The rules are "; character$; " will travel around the globe to fight the"
  50. 430 PRINT "eleven other challengers. You will have to pick a number between so-and-so"
  51. 440 PRINT "and so-and-so. If you get it right, your opponent will be defeated."
  52. 450 PRINT "If you get it wrong, your opponent will hit you once. "
  53. 460 PRINT "If "; character$; " gets hit 3 times, he/she will be defeated."
  54. 470 PRINT ""
  55. 480 PRINT ""
  56. 490 IF character$ = "Ryu" THEN INPUT "Your special moves are: Fireball, Tornado Kick, and Dragon Punch. Which       one do you want "; move$
  57. 500 IF character$ = "E. Honda" THEN INPUT "Your special moves are: Sumo Headbutt, and Hundred Hand Slap. Which one do       you want "; move$
  58. 510 IF character$ = "Blanka" THEN INPUT "Your special moves are: Roll Attack, and Electricity. Which one do you want "; move$
  59. 520 IF character$ = "Guile" THEN INPUT "Your special moves are: Knee Thrust, Sonic Boom, and Flash Kick. Which one    do you want "; move$
  60. 530 IF character$ = "Balrog" THEN INPUT "Your special moves are: Power Punch, and Sliding Uppercut. Which one do you    want "; move$
  61. 540 IF character$ = "Vega" THEN INPUT "Your special moves are: Flying Slash, Rolling Slash. Which one do you want "; move$
  62. 550 IF character$ = "Ken" THEN INPUT "Your special moves are: Fireball, Tornado Kick, and Dragon Punch. Which one do    you want "; move$
  63. 560 IF character$ = "Chun Li" THEN INPUT "Your special moves are: Flying Bird Kick, and Lightning Kick. Which one do you    want "; move$
  64. 570 IF character$ = "Zangief" THEN INPUT "Your special moves are: Spinning Punch, and Spinning Pile Driver. Which one do    you want "; move$
  65. 580 IF character$ = "Dhalsim" THEN INPUT "Your special moves are: Yoga Fire, and Yoga Flame. Which one do you want "; move$
  66. 590 IF character$ = "Sagat" THEN INPUT "Your special moves are: Tiger Fireball, and Tiger Uppercut. Which one do you      want "; move$
  67. 600 IF character$ = "M. Bison" THEN INPUT "Your special moves are: Flying Double Kick, and Flaming Torpedo. Which one do you    want "; move$
  68. 610 PRINT ""
  69. 620 PRINT ""
  70. 630 PRINT "         LET THE FIGHTS BEGIN!!!"
  71. 635 PLAY "o3l4aabbl7cdel4aabbl7cdel4aabbl7cdel4aaa"
  72. 640 LET life = 3
  73. 650 PRINT ""
  74. 660 IF character$ = "Ryu" THEN GOTO 750
  75. 670 PRINT "               "; character$; "   VS.   Ryu"
  76. 690 INPUT "Please select a number between 1 and 3.", number
  77. 700 WHILE number < 2 OR number > 2
  78. 710 PRINT "Sorry. Ryu hits "; character$; " !"
  79. 720 life = life - 1
  80. 725 INPUT "Please re-enter selection.", number
  81. 726 IF life = 0 THEN END
  82. 730 WEND
  83. 740 IF number = 2 THEN PRINT "Great! "; character$; " defeats Ryu!"
  84. 750 PRINT ""
  85. 760 LET life = 3
  86. 770 IF character$ = "E. Honda" THEN GOTO 860
  87. 780 PRINT "                "; character$; "   VS.   E. Honda"
  88. 790 INPUT "Please select a number between 1 and 3.", number
  89. 800 WHILE number < 3 OR number > 3
  90. 810 PRINT "Incorrect. E. Honda hits "; character$; " !"
  91. 820 life = life - 1
  92. 825 INPUT "Please re-enter selection.", number
  93. 826 IF life = 0 THEN END
  94. 830 WEND
  95. 850 IF number = 3 THEN PRINT "Terrific! "; character$; " whips E. Honda with "; move$; " !"
  96. 860 LET life = 3
  97. 870 PRINT ""
  98. 880 IF character$ = "Blanka" THEN GOTO 980
  99. 890 PRINT "                "; character$; "   VS.   Blanka"
  100. 900 INPUT "Please select a number between 1 and 4. ", number
  101. 910 WHILE number < 1 OR number > 1
  102. 920 PRINT "Sorry, sucker. Blanka hits "; character$; " !"
  103. 930 life = life - 1
  104. 935 IF life = 0 THEN END
  105. 940 INPUT "Please re-enter your selection. ", number
  106. 950 WEND
  107. 970 IF number = 1 THEN PRINT "Ouch! Blanka is defeated by "; character$; "'s "; move$; " !"
  108. 980 LET life = 3
  109. 990 PRINT ""
  110. 1000 IF character$ = "Guile" THEN GOTO 1100
  111. 1010 PRINT "                 "; character$; "   VS.   Guile"
  112. 1020 INPUT "Please select a number between 1 and 5. ", number
  113. 1030 WHILE number < 3 OR number > 3
  114. 1040 PRINT "Nope. Guile hits "; character$; " with the Sonic Boom!"
  115. 1050 life = life - 1
  116. 1060 INPUT "Please re-enter your selection. ", number
  117. 1070 IF life = 0 THEN END
  118. 1080 WEND
  119. 1090 IF number = 3 THEN PRINT "Awesome! "; character$; " defeats Guile!"
  120. 1100 LET life = 3
  121. 1110 PRINT ""
  122. 1120 IF character$ = "Balrog" THEN GOTO 1220
  123. 1130 PRINT "                 "; character$; "   VS.   Balrog"
  124. 1140 INPUT "Please select a number between 1 and 6. ", number
  125. 1150 WHILE number < 2 OR number > 2
  126. 1160 PRINT "Wrong. Balrog sinks his gloves into the face of "; character$; " !"
  127. 1170 life = life - 1
  128. 1180 INPUT "Please re-enter your selection. ", number
  129. 1190 IF life = 0 THEN END
  130. 1200 WEND
  131. 1210 IF number = 2 THEN PRINT "Holy Cow! "; character$; " destroyed Balrog!"
  132. 1220 LET life = 3
  133. 1230 PRINT ""
  134. 1240 IF character$ = "Vega" THEN GOTO 1340
  135. 1250 PRINT "          "; character$; "   VS.   Vega"
  136. 1260 INPUT "Please select a number from 1 to 7. ", number
  137. 1270 WHILE number < 6 OR number > 6
  138. 1280 PRINT "Ooch. "; character$; " just got clawed in the face by Vega's steel claws!"
  139. 1290 life = life - 1
  140. 1300 INPUT "Please re-enter your selection. ", number
  141. 1310 IF life = 0 THEN END
  142. 1320 WEND
  143. 1330 IF number = 6 THEN PRINT "And "; character$; " finishes Vega off with the "; move$; " !"
  144. 1340 PRINT ""
  145. 1350 PRINT "   |   |  ----    |    ----       -----    |    -- --   ----"
  146. 1360 PRINT "   |---| |----|   |   |--           |      |   |  |  | |--  "
  147. 1370 PRINT "   |   | |    |   |__ |             |      |   |     | |____"
  148. 1380 PLAY "o3l3abcdgffal9abcdefgl3aabbcdal6defl3o4ggo3fo4ggo3l7fedcbaa"
  149. 1390 PRINT ""
  150. 1400 PRINT ""
  151. 1410 PRINT "AND NOW, STRAIGHT FROM HAWAII, COME THE HONALULU BELLY DANCERS!"
  152. 1420 PLAY "o3l7abcdefgaacfa"
  153. 1430 PRINT ""
  154. 1440 PRINT "Just Kidding."
  155. 1450 PLAY "o2l2cbo1l1a"
  156. 1460 PRINT ""
  157. 1470 PRINT ""
  158. 1480 PRINT "Well, Jim Kline here. It seems that "; character$; " is doing really well!"
  159. 1490 PRINT "The action has really been heating up. With the "; move$; " "; character$; "'s really been"
  160. 1500 PRINT "kicking some butt! I wonder if he/she will ever make it to that guy... what was it's name?"
  161. 1510 PRINT ""
  162. 1520 PRINT ""
  163. 1530 PLAY "o3l3abcddefaacdeeac"
  164. 1540 PRINT "                   AND NOW BACK TO THE FIGHTS!!"
  165. 1550 PLAY "o4l4 defaa"
  166. 1560 PRINT ""
  167. 1570 LET life = 3
  168. 1580 PRINT ""
  169. 1590 IF character$ = "Ken" THEN GOTO 1690
  170. 1600 PRINT "               "; character$; "   VS.   Ken"
  171. 1610 INPUT "Please select a number between 1 and 7. ", number
  172. 1620 WHILE number < 4 OR number > 4
  173. 1630 PRINT "And "; character$; " is nailed!"
  174. 1640 life = life - 1
  175. 1650 INPUT "Please re-enter selection. ", number
  176. 1660 IF life = 0 THEN END
  177. 1670 WEND
  178. 1680 IF number = 4 THEN PRINT "Man! "; character$; " really wasted Ken!"
  179. 1690 LET life = 3
  180. 1700 PRINT ""
  181. 1710 IF character$ = "Chun Li" THEN GOTO 1810
  182. 1720 PRINT "               "; character$; "   VS.   Chun Li"
  183. 1730 INPUT "Please select a number from 1 to 8. ", number
  184. 1740 WHILE number < 6 OR number > 6
  185. 1750 PRINT "Man, that had to hurt. A powerful kick by Chun Li!"
  186. 1760 life = life - 1
  187. 1770 INPUT "Please re-enter your selection. ", number
  188. 1780 IF life = 0 THEN GOTO 1570
  189. 1790 WEND
  190. 1800 IF number = 6 THEN PRINT "Can you imagine that! "; character$; " just beat up a girl!"
  191. 1810 LET life = 3
  192. 1820 PRINT ""
  193. 1830 IF character$ = "Zangief" THEN GOTO 1930
  194. 1840 PRINT "               "; character$; "   VS.   Zangief"
  195. 1850 INPUT "Please enter a number between 1 and 9.  ", number
  196. 1860 WHILE number < 3 OR number > 3
  197. 1870 PRINT "Ouch! And Zangief nails "; character$; " with a Spinning Piledriver!"
  198. 1880 life = life - 1
  199. 1890 INPUT "Please re-enter your selection. ", number
  200. 1900 IF life = 0 THEN GOTO 1570
  201. 1910 WEND
  202. 1920 IF number = 3 THEN PRINT "And Zangief is smashed by a "; move$; " !"
  203. 1930 LET life = 3
  204. 1940 PRINT ""
  205. 1950 IF character$ = "Dhalsim" THEN GOTO 2050
  206. 1960 PRINT "               "; character$; "   VS.   Dhalsim"
  207. 1970 INPUT "Please pick a number between 1 and 9. ", number
  208. 1980 WHILE number < 5 OR number > 5
  209. 1990 PRINT "Oh, man. "; character$; " really got burned by Dhalsim's Yoga Flame!"
  210. 2000 life = life - 1
  211. 2010 INPUT "Please re-enter your choice. ", number
  212. 2020 IF life = 0 THEN GOTO 1570
  213. 2030 WEND
  214. 2040 IF number = 5 THEN PRINT "Ouch. What a powerful "; move$; " Dhalsim got in the face!"
  215. 2050 LET life = 3
  216. 2060 PRINT ""
  217. 2070 IF character$ = "Sagat" THEN GOTO 2170
  218. 2080 PRINT "               "; character$; "   VS.   Sagat"
  219. 2090 INPUT "Please select a number between 1 and 10. ", number
  220. 2100 WHILE number < 10 OR number > 10
  221. 2110 PRINT "And Sagat delivers a powerful Tiger Uppercut to "; character$; "'s chin !"
  222. 2120 life = life - 1
  223. 2130 INPUT "Please re-enter your selection. ", number
  224. 2140 IF life = 0 THEN GOTO 1570
  225. 2150 WEND
  226. 2160 IF number = 10 THEN PRINT "And Sagat is Defeated!!"
  227. 2170  LET life = 3
  228. 2180 PRINT ""
  229. 2190 IF character$ = "M. Bison" THEN GOTO 2330
  230. 2200 PRINT "               "; character$; "   VS.   M. Bison"
  231. 2210 INPUT "Please select a number between 1 and 11. ", number
  232. 2220 WHILE number < 7 OR number > 7
  233. 2230 PRINT "And "; character$; " is severely burned by M. Bison's Flaming Torpedo!"
  234. 2240 life = life - 1
  235. 2250 INPUT "Please re-enter your selection. ", number
  236. 2260 IF life = 0 THEN GOTO 1570
  237. 2270 WEND
  238. 2280 IF number = 7 THEN PRINT "Well, that's the end of Mr. Nazi!"
  239. 2330 LET life = 5
  240. 2340 PRINT ""
  241. 2350 PRINT ""
  242. 2360 PRINT " Well, it seems that "; character$; " has won the tournament and "
  243. 2370 PRINT " has become the World War...Wait a minute!"
  244. 2375 PLAY "o1l9abcdefbb"
  245. 2380 PRINT "Another guy has just entered the tournament!!"
  246. 2390 PRINT "Could it be...? It is! The person who has entered the "
  247. 2400 PRINT "tournament is the infamous ninja, Reptile!"
  248. 2410 PRINT "It seems "; character$; " will have to fight him."
  249. 2420 PRINT "But I'm warning you, "; character$; ". This guy kills for fun!"
  250. 2430 PLAY "o3l7aabbccddeeffaa"
  251. 2440 PRINT ""
  252. 2450 PRINT "Rules: You have 5 chances to guess the number between 1 and 30."
  253. 2460 PRINT "We will tell you if the number is higher or lower than the one"
  254. 2470 PRINT "you just guessed. Good Luck!"
  255. 2480 PRINT ""
  256. 2490 PRINT "                   "; character$; "   VS.   REPTILE"
  257. 2500 PLAY "o3l8abacadaeafaggg"
  258. 2510 INPUT "Please select a number between 1 and 30. ", number
  259. 2520 WHILE number < 13
  260. 2530 PRINT "And "; character$; "'s left side is cut severely by Reptile's sword!!"
  261. 2540 INPUT "The number is higher. Please re-enter selection. ", number
  262. 2550 life = life - 1
  263. 2560 IF life = 0 GOTO 1570
  264. 2570 WEND
  265. 2580 WHILE number > 13
  266. 2590 PRINT "Oh my gosh!! Reptile just stabbed "; character$; "!! I don't know if"
  267. 2600 PRINT " "; character$; " is going to make it!"
  268. 2610 INPUT "The number is lower. Please select again. ", number
  269. 2620 life = life - 1
  270. 2630 IF life = 0 THEN GOTO 1570
  271. 2640 WEND
  272. 2650 IF number = 13 THEN PRINT "HOLY COW!! THE UNDEFEATED REPTILE IS NOW DEAD!!!"
  273. 2700 PRINT ""
  274. 2710 PRINT ""
  275. 2715 PLAY "o5l9aacdbbadcaab"
  276. 2720 PRINT "And so, after killing the ninja Reptile, "; character$; " was proclaimed"
  277. 2730 PRINT "the new World Warrior, and everywhere his name was known as the name of"
  278. 2740 PRINT "the greatest warrior of all time."
  279. 2750 PRINT ""
  280. 2755 PLAY "o3l4aabcdaabdefdco1l1aaa"
  281. 2760 PRINT ""
  282. 2770 PRINT "                       CREDITS  "
  283. 2780 PRINT ""
  284. 2790 PRINT "Designer...................................... Eric Walker"
  285. 2800 PRINT "Programmer1................................... Eric Walker"
  286. 2810 PRINT "Art........................................... Eric Walker"
  287. 2820 PRINT "Programmer2................................... Eric Walker"
  288. 2830 PRINT "Characters......................................... Capcom"
  289. 2840 PRINT "Reptile............................................ Midway"
  290. 2850 PRINT "Music......................................... Eric Walker"
  291. 2860 PLAY "o2l5aaffeebdcal9ccddbbal4abca"
  292. 2870 PRINT ""
  293. 2880 PRINT ""
  294. 2890 PRINT "  -----  |   |  ----        ----  --  |  ---_ "
  295. 2900 PRINT "    |    |---| |---        |---  |  | | |    |"
  296. 2910 PRINT "    |    |   | |____       |____ |  |_| |___-|"
  297. 2920 PRINT ""
  298. 2930 PLAY "o1l1aal4gg"
  299. 2940 PRINT ""
  300. 2950 PRINT "Uh, Oh. Someone else has just entered the tournament!!"
  301. 2960 PLAY "o1l2aabb"
  302. 2970 PRINT "  Just Kidding."
  303. 2980 PLAY "o4l9bbccddeeddggp10"
  304. 2990 PRINT ""
  305. 3000 PRINT ""
  306. 3010 PRINT "                             THE END"
  307. 3020 IF character$ = "Ken" THEN PLAY "o5l2abcdeffg"
  308. 3030 IF character$ = "Zangief" THEN PLAY "o1l4abba"
  309. 3040 IF character$ = "Ryu" THEN PLAY "o3l4acba"
  310. 3050 IF character$ = "Balrog" THEN PLAY "o2l4acbac"
  311. 3060 IF character$ = "Chun Li" THEN PLAY "o5l4bcbccba"
  312. 3070 IF character$ = "Dhalsim" THEN PLAY "o2l6edcbaabcde"
  313. 3080 IF character$ = "Blanka" THEN PLAY "o1l4bcddcbcdd"
  314. 3090 IF character$ = "Vega" THEN PLAY "o5l8ddecddaabbccddaaggddaabbccbbcdefggaaa"
  315. 3100 IF character$ = "E. Honda" THEN PLAY "o2l2baabc"
  316. 3110 IF character$ = "Guile" THEN PLAY "o3l4aabbl6cdel4aabbl6cdeaa"
  317. 3120 IF character$ = "Sagat" THEN PLAY "o3l4acegl8gfedcbaa"
  318. 3130 IF character$ = "M. Bison" THEN PLAY "o1l1dcbaaa"
  319. 3140 END
  320. 3150 PRINT "Player#1 has a stronger offense,"
  321. 3160 PRINT "while Player#2 has a stronger defense."
  322. 3170 PRINT "They take turns punching and kicking each other."
  323. 3180 PRINT "Type capitol P to punch, and capitol K to kick."
  324. 3190 PRINT "Keep on in this manner until one player is dead."
  325. 3200 PRINT ""
  326. 3210 INPUT "Who, out of all the Street Fighters, is Player#1 "; nme1$
  327. 3220 INPUT "Who, out of all the Street Fighters, is Player#2 "; nme2$
  328. 3230 PRINT ""
  329. 3240 PRINT "                 "; nme1$; "   VS.   "; nme2$; "       "
  330. 3250 PLAY "o4l6abcdefggl16fcdbaal1al4o3ddcbad"
  331. 3260 PRINT ""
  332. 3270 life1 = 40
  333. 3280 life2 = 50
  334. 3290 PRINT "It is "; nme1$; "'s turn."
  335. 3300 INPUT "Do you want to punch or kick your opponent "; atck$
  336. 3310 IF atck$ = "P" THEN life2 = life2 - INT(RND * (9 - 3) + 3)
  337. 3320 IF atck$ = "K" THEN life2 = life2 - INT(RND * (11 - 0) + 0)
  338. 3330 IF life2 < 1 THEN GOTO 3440
  339. 3340 PRINT "And "; nme2$; " has "; life2; " life remaining."
  340. 3350 PRINT ""
  341. 3360 PRINT "It is "; nme2$; "'s turn."
  342. 3370 INPUT "Do you want to punch or kick your opponent "; atck$
  343. 3380 IF atck$ = "P" THEN life1 = life1 - INT(RND * (7 - 2) + 2)
  344. 3390 IF atck$ = "K" THEN life1 = life1 - INT(RND * (9 - 0) + 0)
  345. 3400 IF life1 < 1 THEN GOTO 3590
  346. 3410 PRINT "And "; nme1$; " has "; life1; " life remaining."
  347. 3420 PRINT ""
  348. 3430 IF life1 <> 0 OR life2 <> 0 THEN GOTO 3290
  349. 3440 PRINT ""
  350. 3450 IF nme1$ = "Ken" THEN PRINT "And with Ken's skill by Sheng Long, "; nme2$; " is defeated!"
  351. 3460 IF nme1$ = "Ryu" THEN PRINT "And with a Dragon Punch, Ryu defeats his opponent!"
  352. 3470 IF nme1$ = "E. Honda" THEN PRINT "Whoa! E. Honda's Hundred Hand Slap made short work of "; nme2$; "!"
  353. 3480 IF nme1$ = "Blanka" THEN PRINT "And the beast, Blanka, wins!!"
  354. 3490 IF nme1$ = "Guile" THEN PRINT "With the mighty Flash Kick, Guile wins!!"
  355. 3500 IF nme1$ = "Balrog" THEN PRINT "Balrog's boxing gloves are now smeared with "; nme2$; "'s blood!"
  356. 3510 IF nme1$ = "Vega" THEN PRINT "Vega's sharp claws have been put to use!"
  357. 3520 IF nme1$ = "Chun Li" THEN PRINT "Looks like Chun Li is the strongest woman in the world, after all!"
  358. 3530 IF nme1$ = "Zangief" THEN PRINT "With a Spinning Pile Driver, Zangief grinds "; nme2$; " into the pavement!!"
  359. 3540 IF nme1$ = "Dhalsim" THEN PRINT "Dhalsim really burned up "; nme2$; " with Yoga Fire!"
  360. 3550 IF nme1$ = "Sagat" THEN PRINT "The kickboxer Sagat really kicked "; nme2$; "'s butt!"
  361. 3560 IF nme1$ = "M. Bison" THEN PRINT "With the Flying Double Kick, M. Bison made a mess out of "; nme2$; "!"
  362. 3570 PLAY "o3l6aabbcdacgl16al8bl16ddacbddcbcddo2l5ddegfcb"
  363. 3580 END
  364. 3590 PRINT ""
  365. 3595 IF nme2$ = "Ken" THEN PRINT "And with Ken's skill by Sheng Long, "; nme1$; " is defeated!"
  366. 3600 IF nme2$ = "Ryu" THEN PRINT "And with a Dragon Punch, Ryu defeats his opponent!"
  367. 3610 IF nme2$ = "E. Honda" THEN PRINT "Whoa! E. Honda's Hundred Hand Slap made short work of "; nme1$; "!"
  368. 3620 IF nme2$ = "Blanka" THEN PRINT "And the beast, Blanka, wins!!"
  369. 3630 IF nme2$ = "Guile" THEN PRINT "With the mighty Flash Kick, Guile wins!"
  370. 3640 IF nme2$ = "Balrog" THEN PRINT "Balrog's boxing gloves are now smeared with "; nme1$; "'s blood!"
  371. 3650 IF nme2$ = "Vega" THEN PRINT "Vega's sharp claws have been put to use!"
  372. 3660 IF nme2$ = "Chun Li" THEN PRINT "Looks like Chun Li is the strongest woman in the world, after all!"
  373. 3670 IF nme2$ = "Zangief" THEN PRINT "With a Spinning Pile Driver, Zangief grinds "; nme1$; " into the pavement!!"
  374. 3680 IF nme2$ = "Dhalsim" THEN PRINT "Dhalsim really burned up "; nme1$; " with Yoga Fire!"
  375. 3690 IF nme2$ = "Sagat" THEN PRINT "The kickboxer Sagat really kicked "; nme1$; "'s butt!"
  376. 3700 IF nme2$ = "M. Bison" THEN PRINT "With the Flying Double Kick, M. Bison really made a mess out of "; nme1$; "!"
  377. 3710 PLAY "o3l6aabbcdacgl16al8bl16ddacbddcbcddo2l5ddegfcb"
  378. 3720 END
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.